home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Eudora 1.3.1 / source / Include / progress.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-16  |  651 b   |  15 lines  |  [TEXT/MPS ]

  1. /* Copyright (c) 1990-1992 by the University of Illinois Board of Trustees */
  2. /************************************************************************
  3.  * Declarations for progress monitoring
  4.  ************************************************************************/
  5. typedef enum ProgressEnum {NoBar = -2, NoChange = -1};
  6. int OpenProgress(void);
  7. void Progress(short percent,char *message);
  8. void CloseProgress(void);
  9. void ByteProgress(UPtr message, int onLine, int totLines);
  10. void DisableProgress(void);
  11. void EnableProgress(void);
  12. void PushProgress(void);
  13. void PopProgress(Boolean messageOnly);
  14. void SetProgressN(short n);
  15. Boolean ProgressIsOpen(void);